- /* sfmsign.cpp by K.Tsuru */
- // function ID = 709
- /********************************
- SFraction class
- It provides the sign operator -m.
- *********************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- SFraction SFraction::operator-() const {
- SFraction result(*this);
- result.num.ChangeSign(709);
- return result;
- }